home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
gcc
/
ixemulsrc.lha
/
ixemul-41.4
/
gnulib-soft-float
/
udivsi3.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-08-19
|
145b
|
11 lines
#include "common.h"
unsigned SItype
__udivsi3 (a, b)
unsigned SItype a, b;
{
unsigned SItype q, r;
divmodu (q, r, a, b);
return q;
}